home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / dev / c / GAPLib.lha / GAPLib_Beta / Makefile < prev    next >
Makefile  |  1999-04-22  |  585b  |  31 lines

  1.  
  2. .PHONY:
  3.     @echo
  4.  
  5. default: .PHONY
  6.     @echo " "
  7.     @echo "GAP-Lib (C)1998-1999 Peter Bengtsson"
  8.     @echo " "
  9.     @echo "Target must be one of:"
  10.     @echo " "
  11.     @echo "  examples   - Compile examples (gcc/egcs)."
  12.     @echo "  amigaex    - Compile examples with Amiga SAS/C."
  13.     @echo " "
  14.     @echo "  wizards    - Source wizards (gcc/egcs)."
  15.     @echo " "
  16.     @echo "  check      - Check MD5 checksums for files."
  17.     @echo " "
  18.  
  19. wizards: .PHONY
  20.     gmake -C wizards -f Makefile all
  21.  
  22. examples: .PHONY
  23.     gmake -C examples -f Makefile all
  24.  
  25. amigaex: .PHONY
  26.     @execute Amiga.sh examples all
  27.  
  28. check: .PHONY
  29.     md5sum -c Checksums
  30.  
  31.